I used the sample download from dhtmlx (dhtmlxConnector_net) to add a new field (custom nvarchar) to details form but when i update the event (custom field) it didn’t update database.
the follow are my steps
- add a field(custom) in database .
- add " { name: “Custom”, height:30, type: “textarea”, map_to: “Custom” }, " those code in
function init(){ scheduler.config.lightbox.sections }
3 update dhtmlxschedulerconnector in ashx.cs file like
return new dhtmlxSchedulerConnector(
“Events”
, “EventID”
, dhtmlxDatabaseAdapterType.SqlServer2005
, ConfigurationManager.ConnectionStrings[“SamplesDatabase”].ConnectionString
, “FromDate”
, “ToDate”
, “Subject as text, Details as details, Tags, Custom”
);
i checked the offical api but i can’t figure it out !
help !!!
regards thanks any idea is welcome!
spirithero