My problem is when i try to add a new LightboxText in dhtml scheduler in asp.net . It render like Textarea.I need it render like asp textbox.
is it possible? please help
sch.Lightbox.Add(new LightboxText(“txtPhoneNumber”,“Phone No”));
My problem is when i try to add a new LightboxText in dhtml scheduler in asp.net . It render like Textarea.I need it render like asp textbox.
is it possible? please help
sch.Lightbox.Add(new LightboxText(“txtPhoneNumber”,“Phone No”));
Hello,
it’s not possible to change type of existing controls, but you can define your own.
It requires defining control’s on the client-side as described here
docs.dhtmlx.com/scheduler/custom … ditor.html
And defining server-side class, for adding it to DHXScheduler configuration, it must be derived from the LightboxField class and have type-specific value of LightboxField.Type property(the same that has been used on the client).
Please check this example
s3.amazonaws.com/uploads.hipcha … 131104.zip