Hi,
I trying to do a rest of DropDownList whenever my RadTabStrip is changing. I have try using Items.Clear() when there a TabSwitch Event occur. however, is not wroking.The Item in DropdownList is blinded with Datasource, try setting DataSource as Null is not working too.
Can someone advise my an alternative solution?
Hi,
I have encountered the issue of RadDatePicker showing transparent on background when clicked on it. Please advise how to overcome this issue. I have included the screen shot.
Telerik.Web.UI version: v2.0.50727
ASP UI page:
<telerik:RadDatePicker ID="rdpActivityDate" RenderMode="Lightweight" runat="server" > </telerik:RadDatePicker>
Please bear with me, as this is my first post.
I am trying to do a clientside validation on filename expression. I do not want to have :, /, %, etc in my file names. How do you guys do that?
Hi,
I'm trying to use Gantt chart with client side binding to web service. First I tried to return some hardcoded data and it works fine, the tasks are shown on the chart. But in order to get the real data I need to send some additional data to the web service. I tried to do this just as shown in the docs (LINK), but as soon as I add this parameter to the functions:
IDictionary<
string
, object> context
no data will be shown on the chart and the debugger doesn't stop in the functions (f.e. GetTasks). I'm 99,(9) % sure I did everything exactly like in the example.
P.S. I'm using Sharepoint 2013, don't if it's important here.
I'd grateful for any help.
Maciek
Hello,
I am using Rad Grid version with Scrolling, Static Headers, and one Frozen Column. The grid shows Arabic data (from right to left).
The problem is that the grid does not show all columns. The horizontal scroll bar reaches the end, but not all columns are visible.
You can check the attached screenshot.
Appreciate your help,
Thanks,
Hello,
I have a radgrid where I added a button in the ItemCreated event for the grid.
<
p
>if (e.Item is GridCommandItem)<
br
> {<
br
> ImageButton b = new ImageButton();<
br
> b.ID = "Export";<
br
> b.ImageUrl = "images/excel.png";</
p
><
p
>b.CommandName = "Export";</
p
><
p
>e.Item.Controls[0].Controls[1].Controls.Add(b);<
br
> }</
p
>
When the image is clicked it calls the ItemCommand event:
protected void grdInventory_ItemCommand(object sender, Telerik.Web.UI.GridCommandEventArgs e)<
br
> {<
br
> if (e.CommandName == "Export")<
br
> {<
br
> //do stuff<
br
> }<
br
> }
I want to capture the filters or grouping for that grid and export them to excel in that event. I'd also like to ignore the paging. I know there is a default exportToExcel button for these grids, but I need to export to a template. Therefore, I want to write custom code in the ItemCommand event. Unless there is something built into radgrid that will allow me to export the results to a predefined template?
Thanks!