***************************************************************************
I have created�. A new block.
scheduler.form_blocks["my_editor"]={
render:function(sns){
return "
Subject Sales Rep
Customer Ranking
Address
State City Zip
Location
";
Customer Ranking
Address
State City Zip
Location
},
set_value:function(node,value,ev){
node.childNodes[1].value=value||"";
node.childNodes[3].value=ev.details||"";
},
get_value:function(node,ev){
ev.location = node.childNodes[3].value;
return node.childNodes[1].value;
},
focus:function(node){
var a=node.childNodes[1]; a.select(); a.focus();
}
}
And give
scheduler.config.lightbox.sections=[
{name:"location1", height:100, type:"my_editor", map_to:"text" },
{name:"time", height:512, type:"time", map_to:"auto"},
{name:"description", height:100, map_to:"text", type:"textarea" , focus:true}
]
******************************************************************************
Now my problem is ����������
What chage I need to implement in scheduler.form_blocks["my_editor"] get and set method and in other script
so how I can put every field in Scheduler_BasicConnector like�..
c.render_table("events","event_id","start_date,end_date,Salesrep,details,itemDetail,Ranking,Customer,address,state,city,zip","","",companyId);
please help