Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
44 views
I saw that there was an issue with the use of MOSS Reusable Content via the Rad Editor in a Web Part. 
I installed the trial version of the MOSS/editor integration along with the ASP.NET AJAX.  I get the MOSS template editor feature to work in a web part, but the content does not change when the source content (marked as "read only") is not changed.
Has the issue previously mentioned been fixed? 
Stanimir
Telerik team
 answered on 30 Oct 2009
4 answers
129 views
Hi

when you filter objects always the page count is 300 000
how can this be updated when user filters the data
Yavor
Telerik team
 answered on 30 Oct 2009
1 answer
88 views
Hi,
  I have a entry grid I have 10 rows on which 10 radtext box is there and 10 corresponding image.
On clock of image I want to open Radwindow and get some values from Radwindow and fill in the corresponding text box.
I can get data grom Radwindow but problem is assigning data to respective text box.
How can I get ID of text box to assign data?

With Regards,
Babul
Shinu
Top achievements
Rank 2
 answered on 30 Oct 2009
1 answer
197 views
Is it possible to retrieve date and time as part of a code snippet. I want users to be able to click the 'Insert Code Snippet' and insert a snippet which puts in the date and time. All the examples just show pure HTML.
Rumen
Telerik team
 answered on 30 Oct 2009
1 answer
367 views
hello,
How can i make a autufill textbox like in your demo page in search examples  box.
i could not figure it out. My textbox is  in a radajax panel.
http://demos.telerik.com/aspnet-ajax/input/examples/radinputmanager/validationthroughwebservice/defaultcs.aspx
Shinu
Top achievements
Rank 2
 answered on 30 Oct 2009
1 answer
112 views
Hi,

I would like to find out if anyone has tried using the AJAX Grid control to make a logger control.  Basically the rows would contain HTML with an image representing the type of log entry, text, time, etc.

Also, is it possible to programmatically smoothly scroll the grid, so when new entries are added I can scroll the old rows off, and scroll the new rows on?

I know, very high level questions, but I have a very tight time-frame, so I thought I'd ask before coding/learning this from scratch.

Regards,
Shane
Shinu
Top achievements
Rank 2
 answered on 30 Oct 2009
1 answer
139 views
Experienced members,

I must be missing what is right in front of me... How does one go about setting a default value on newly inserted rows in the grid.

I have tried many of the events to get to e.Item.DataItem but alot of the time that property is null.

Can anyone point me in the right direction here?

Thanks,

Chris
Princy
Top achievements
Rank 2
 answered on 30 Oct 2009
1 answer
313 views

 

Dear Telerik
                      I am creating a radcombobox in first row using the below code using filter template inside boundcolumn.I want to bind data to comboxbox at runtime.After that I want to add a selectedindexchanged event to radcombox so that if I select any thing from comboxbox then the data in radgrid is changed accordingly.How to do this functionality.Please provide any sample for me .I tried the sample provided in telerik documentation where they have used custom template column,but it didn't worked for me.Please give me response as I need it urgently.

 

<

telerik:GridBoundColumn DataField="EVENT_TYPE_DESC" HeaderText="Event type" AllowFiltering="true" CurrentFilterFunction="EqualTo" ShowFilterIcon="false">

 

 

 

<FilterTemplate>

 

 

 

<telerik:RadComboBox ID="cmbEventType" runat="server"></telerik:RadComboBox>

 

 

 

</FilterTemplate>

 

 

 

</telerik:GridBoundColumn>

 

 

Full aspx code

<

telerik:RadScriptManager ID="sm" runat="server"></telerik:RadScriptManager>

 

 

 

<div>

 

 

<table width="100%">

 

 

<tr>

 

 

<td>Show events from<telerik:RadDatePicker ID="rdpFromDate" runat="server">

 

 

<DateInput ID="dateFrom" DateFormat="MM/dd/yyyy" DisplayDateFormat="MM/dd/yyyy" runat="server"></DateInput>

 

 

</telerik:RadDatePicker>

 

 

to

 

<telerik:RadDatePicker ID="rdpToDate" runat="server" OnSelectedDateChanged="rdpToDate_SelectedDateChanged" AutoPostBack="true">

 

<DateInput ID="dateTo" DateFormat="MM/dd/yyyy" DisplayDateFormat="MM/dd/yyyy" runat="server"></DateInput>

 

 

</telerik:RadDatePicker>

 

 

<asp:LinkButton ID="lnkViewall" runat="server" Text="View all" CommandName="View all" OnClick="lnkViewall_Click"></asp:LinkButton>

 

 

</td>

 

 

</tr></table>

 

 

<table border="0" width="100%">

 

 

<tr>

 

 

<td>

 

 

<telerik:RadGrid ID="gvEventHistory" skin ="Office2007" runat="server" AutoGenerateColumns="false" AllowPaging="true" AllowSorting="true" AllowFilteringByColumn="true" OnItemDataBound="gvEventHistory_ItemDataBound" >

 

 

<MasterTableView DataKeyNames="E_NO,SCHEDULE_EVENT_ID" ClientDataKeyNames="E_NO,SCHEDULE_EVENT_ID">

 

 <

RowIndicatorColumn>

 

 

<HeaderStyle Width="2px" />

 

 <

ItemStyle Width ="10px" />

 

 

</RowIndicatorColumn>

 

 

<Columns>

 

 

<telerik:GridBoundColumn DataField="E_NO" UniqueName="E_NO" HeaderText = "Eno #" Visible="false"></telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="SCHEDULE_EVENT_ID" HeaderText="ScheduleEventId" UniqueName="SCHEDULE_EVENT_ID" Visible="false"></telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="Tcode" HeaderText="Terr." AllowFiltering="true"

 

 C

urrentFilterFunction="EqualTo" ShowFilterIcon="false">

 

 

<FilterTemplate>

 

 

<asp:TextBox ID="txtTerr" runat="server"></asp:TextBox>

 

 

</FilterTemplate>

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="EVENT_TYPE_NAME" HeaderText="Event name" AllowFiltering="true" CurrentFilterFunction="StartsWith" ShowFilterIcon="false">

 

 

<FilterTemplate>

 

 

<asp:TextBox ID="txtEventName" runat="server"></asp:TextBox>

 

 

</FilterTemplate>

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="EVENT_TYPE_DESC" HeaderText="Event type" AllowFiltering="true" CurrentFilterFunction="EqualTo" ShowFilterIcon="false">

 

 

<FilterTemplate>

 

 <

telerik:RadComboBox ID="cmbEventType" runat="server"></telerik:RadComboBox>

 

 

</FilterTemplate>

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="Lno" HeaderText="Location #" AllowFiltering="true"

 

 

CurrentFilterFunction="EqualTo" ShowFilterIcon="false">

 

 

<FilterTemplate>

 

 

<asp:TextBox ID="txtLocation" runat="server"></asp:TextBox>

 

 

</FilterTemplate>

 

 <

/telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="START_TIME" HeaderText="Start date" AllowFiltering="true"

 

 

CurrentFilterFunction="EqualTo" ShowFilterIcon="false" DataFormatString="{0:d}" >

 

 

<FilterTemplate>

 

 

<telerik:RadDatePicker ID="rdStartDate" runat="server">

 

 <

/telerik:RadDatePicker>

 

 

</FilterTemplate>

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="END_TIME" AllowFiltering="true" HeaderText="Start time" CurrentFilterFunction="EqualTo" ShowFilterIcon="false" DataFormatString="{0:T}">

 

 

<FilterTemplate>

 

 

<telerik:RadTimePicker ID="rdStartTime" runat="server"></telerik:RadTimePicker>

 

 

</FilterTemplate>

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridTemplateColumn ShowFilterIcon="false" HeaderText="Attendance" DataField="Attendance">

 

 <

FilterTemplate>

 

 

<telerik:RadComboBox ID="cmbAttend" runat="server">

 

 

<Items>

 

 

<telerik:RadComboBoxItem Text="Attended" Value="Attended" />

 

 

<telerik:RadComboBoxItem Text="UnAttended" Value="UnAttended" />

 

 

<telerik:RadComboBoxItem Text="All" Value="All" />

 

 

</Items>

 

 

</telerik:RadComboBox>

 

 

</FilterTemplate>

 

 

<ItemTemplate>

 

 

<asp:CheckBox ID="chkAttend" runat="server" />

 

 

</ItemTemplate>

 

 

</telerik:GridTemplateColumn>

 

 

</Columns>

 

 

</MasterTableView>

 

 

<ClientSettings Selecting-AllowRowSelect="true">

 

 

<ClientEvents OnRowDblClick="OnRowDblClick"/>

 

 

</ClientSettings>

 

 <

/telerik:RadGrid>

Thanks
sri

 

 

 

Princy
Top achievements
Rank 2
 answered on 30 Oct 2009
0 answers
70 views

Hi All

 I have Master page with "RADScriptManager" and content page with "radajaxmanager"  and "radajaxloadingpanel" with different control  like "RADGrid" and "RADTAB" with Multi Page in multipage i have User Control in one of page and i want to access "RadTab" and "MultiPage" in content page with Ajax in usercontrol and change "RadTab" content and index..

Thanks in advance

nitin

nitin_ind_ap1@yaoo.co.in

nitin
Top achievements
Rank 1
 asked on 29 Oct 2009
0 answers
60 views
Hello,

I would like to know how to use different templates on the same RadTabStrip. I have looked at all of the examples that show how to statically declared TabTemplates in the .aspx file and override them in the RadTab.  

I have 4 items on the RadTabStrip which are static and must always be present then I also allow users to add new tabs and persist them to a database. I would like the tabs that the user has added to be removable and for the delete button to only showup on the tabs that have been added and are dynamic not the static tabs. I have implemented different examples provided in the documentation but have been unsuccessful at having tabs not using a template and other tabs using my "RemovableTabTemplate".

Can you please provide some insight into how i can implement this?
Bobby Johnson
Top achievements
Rank 1
 asked on 29 Oct 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?