search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

Add a textbox on each row of Scheduler

Asked by Anonymous
10 years ago.

Hi

I'd like to add a textbox on each resource, so on each row there is the row Title ("Richard"), the user home ("Aberdeen") and a textbox which user can add a "note". After this, there is the calendar

So, there is 3 columns (label, label, textbox)

Like http://www.daypilot.org/scheduler-row-header-columns.html but not just labels, instead have an editable textbox not just 3 columns of labels

I've started with this but cannot find how to display a textbox input field

Thanks in advance for help

<DayPilot:Resource Name="Richard" Value="10" Expanded="False">
<Columns>
<DayPilot:ResourceColumn InnerHTML="Aberdeen" />
<DayPilot:ResourceColumn InnerHTML="Textbox here!" />
</Columns>
</DayPilot:Resource>

Answer posted by Dan Letecky [DayPilot]
10 years ago.

You can add the textbox by setting custom InnerHTML to something like "<input type='text' id='myid' />'. You can access it through Resources collection or using BeforeResHeaderRender event (e.Columns[1].Html).

However, this won't let you insert <asp:TextBox> control.

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.