Editable templates problem
I've to confronted a problem when assigning "onmouseover" and "mouseout" event handers to an editable tamplate (input text, textarea... doesn't metter)
Here is a piece of code:
The template's functionality is being broken in this case: when you are in edit mode and click to another editable cell in the same column, it crashes. Could anybody reproduce the situation and help me, please.
Here is a piece of code:
var tpl = new My.Templates[type];
tpl.setEvent("onmouseover", function()
{
this.action("actionOver");
});
tpl.setEvent("onmouseout", function()
{
this.action("actionOut");
});
The template's functionality is being broken in this case: when you are in edit mode and click to another editable cell in the same column, it crashes. Could anybody reproduce the situation and help me, please.
DeadMoroz
March 17,