Hi,
I have a grid and a date range parameter and need to send those date parameter values through the DataNavigateUrlFormat. How can I do this without hardcoding those values and using the date parameter values (dynamic values)
I have a grid and a date range parameter and need to send those date parameter values through the DataNavigateUrlFormat. How can I do this without hardcoding those values and using the date parameter values (dynamic values)
Example: In the column mentioned below I want to pass “From Date” and “To Date” values as part of the query string.
<telerik:GridHyperLinkColumn DataNavigateUrlFields="EmailCampaigns" UniqueName="EmailCampaigns"
DataNavigateUrlFormatString="EmailTrackingBreakup.aspx?MailType={0}&FrmDt=01/01/2009&ToDt=05/31/2009" DataTextField="EmailCampaigns"
HeaderText="Email Campaigns" SortExpression="EmailCampaigns">
<HeaderStyle HorizontalAlign="Left" />
<ItemStyle HorizontalAlign="Left" />
</telerik:GridHyperLinkColumn>
Thanks,