Hi all,
Thank for developing… dhtmlx products are all very nice and easy to work…
Now How to change the lightbox design.
how to bind data in dropdown from database
Please help me
Thanks in advance
Hi all,
Thank for developing… dhtmlx products are all very nice and easy to work…
Now How to change the lightbox design.
how to bind data in dropdown from database
Please help me
Thanks in advance
Now How to change the lightbox design.
You can check
docs.dhtmlx.com/doku.php?id=dhtm … tails_form
how to bind data in dropdown from database
docs.dhtmlx.com/doku.php?id=dhtm … #connector
and related sample - samples\01_initialization_loading\09_connector_options.html
Hi
Stanislav thanks for ur valuable replay…
I need to load lightbox combo from database using .net connector
Also i need to change the time period in lightbox to “Start Date”, “End Date”,“Start Time” and “End Time”
Scheduler 2.2 can load collections from server side, but server side of such feature is supported only in PHP version of connectors.
Also i need to change the time period in lightbox
You need to design your custom form section
Check sources/lightbox.js - it contains full code of “time” section, which you can take as a base. You will need to change order of fields in render method, and indexes of selects in get_value and set_value methods
Hi Stanislav
I create the tool tip. But my requirement is show the tooltip and click the tooltip like year tab
Please help me. how to click the tooltip and when i click the tooltip show the lightbox
How to show the lightbox in singleclick in the scheduler
Thanks in advance
and when i click the tooltip show the lightbox
Call
scheduler.showLightbox(id)
where id - id of event
How to show the lightbox in singleclick in the scheduler
scheduler.attachEvent("onClick", function(id){
scheduler.showLightbox(id);
return false;
})
Hi Stanislav
i need show the lightbox when create a new event in a single click of scheduler
You can override default click processing ( but it will block normal selection functionality )
scheduler._click.dhx_cal_data = function(e){
scheduler._on_dbl_click(e);
}
How to create a link button in lightbox.
Plz Help me
You can create a custom form -block where any html can be rendered or try to use the next feature