Telerik Forums
UI for ASP.NET AJAX Forum
7 answers
154 views

I have a simple radstrip, every time i click Reports tab, Provider tabe is enabled.

 


<
telerik:RadTabStrip ID="RadTabStrip1" runat="server" Skin="Windows7" MultiPageID="RadMultiPage1"

 

 

 

SelectedIndex="0" Align="Justify" Width="347px">

 

 

 

<Tabs>

 

 

 

<telerik:RadTab Text="Providers" NavigateUrl="Default.aspx" runat="server" >

 

 

 

</telerik:RadTab>

 

 

 

<telerik:RadTab Text="Reports" NavigateUrl="~/Report/Reports.aspx" runat="server">

 

 

 

</telerik:RadTab>

 

 

 

</Tabs>

 

 

 

</telerik:RadTabStrip>

Need help ASAP.

 

Dimitar Terziev
Telerik team
 answered on 09 Nov 2011
2 answers
91 views
Hi,

I have 2 Grids in the aspx page.

I am using Customized edit form (user control) for first Radgrid.

In the first grid we are using customized editform.  It has a link button. When the user clicks on  the link button , it  should bind the data to the second grid.

Is there any way can we achieve this.
Could some one plese help me regarding this.

Thanks
Usha
Jayesh Goyani
Top achievements
Rank 2
 answered on 09 Nov 2011
1 answer
118 views
I have the below grid....on page load its empty. Then binds the grid after an action is taken on the page....see js function below. The default page size (10) is not changing to account for the new page size (count) ... how do i fix this?

thanks in advance

 

<telerik:RadGrid runat="server" ID="rgSpecialtyType" AutoGenerateColumns="false" GridLines="None" style="border-width: 1px >

 

 

<HeaderStyle Font-Bold="true"  />

 

 

<ItemStyle Wrap="true" />

 

 

 

<MasterTableView CellPadding="4" CellSpacing="1">

 

 

<Columns>

 

 

<telerik:GridTemplateColumn >

 

 

<HeaderStyle CssClass="colTitle" Width="5%" Height="7%" />

 

 

<HeaderTemplate>

 

 

<asp:CheckBox ID="cbSelectAll" runat="server" onClick="checkAll(this);"></asp:CheckBox>

 

 

</HeaderTemplate>

 

 

<ItemTemplate>

 

 

 

<asp:CheckBox ID="chkBoxST" AutoPostBack="false" runat="server" ></asp:CheckBox>

 

 

</ItemTemplate>

 

 

</telerik:GridTemplateColumn>

 

 

<telerik:GridBoundColumn UniqueName="ST" DataField="ST" HeaderText=" Specialty Type"  >

 

 

</telerik:GridBoundColumn>

 

 

 

</Columns>

 

 

 

</MasterTableView>

 

 

<ClientSettings>

 

 

<ClientEvents OnCommand="function(){}" />

 

 

 

</ClientSettings>

 

 

</telerik:RadGrid>

Javascript function:

 

 

function PopulateGrid(results,count) {

 

 

 

 

 

var tableView = $find("<%= rgSpecialtyType.ClientID %>").get_masterTableView();

 

 

tableView.set_dataSource(results);
tableView.set_pageSize(count)  //the new page size in not taking in effect....
tableView.dataBind();

 

 

 

}

Shinu
Top achievements
Rank 2
 answered on 09 Nov 2011
1 answer
199 views
Hello,

My users have asked me if it's possible to filter a given column in a grid using boolean operators.  Using this demo as a example, they'd like to filter like this:

Show me all orders where the shipcountry starts with "fr" or "ge".

Is there a syntax for this when using basic/simple filtering on a RadGrid?  I don't want to use a RadFilter because it has not faired well in usability tests with this group of users.  I've tried the options listed below but they don't seem to accomplish what I'm looking for:

fr or ge
fr || ge

Can anyone tell me if this functionality is baked into the RadGrid basic filtering?

Thank you,
Andrew

Princy
Top achievements
Rank 2
 answered on 09 Nov 2011
2 answers
239 views
Hi friends,

i am using RadScheduler in our application.
As our clients requirement we have to display only arrow keys(left and right arrows) in scheduler with out today link and calender (i.e down arrow) in Navigation bar.
so how can i change this one as per clients requirement
i have changed today link using
<style type="text/css">
    .rsToday
    {
        display: none !important;
    }

</style>
how can i change calender arrow
i.e down arrow

Thanks
Anwar
Anwar
Top achievements
Rank 2
 answered on 09 Nov 2011
6 answers
184 views
Hi everybody,

Microsoft Dynamics AX2009 supports ASP.NET development on its Enterprise Portal framework, which runs on SharePoint. In theory, it should be possible to use the Telerik user controls on this platform. However, all attempts to accomplishing this are resulting in the same error below. The Enterprise Portal uses a 'Dynamics AX User Control Web Part' to host the user control.
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
System.Web.HttpException: Please, see whether wrapping the code block, generating the exception, within RadCodeBlock resolves the error. ---> System.Web.HttpException: The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>).
   at System.Web.UI.ControlCollection.Add(Control child)
   at Telerik.Web.SkinRegistrar.RegisterCssReference(Page _page, Control _control, String _url)
   --- End of inner exception stack trace ---
   at Telerik.Web.SkinRegistrar.RegisterCssReference(Page _page, Control _control, String _url)
   at Telerik.Web.SkinRegistrar.RegisterCssReferences(ISkinnableControl _control)
   at Telerik.Web.UI.RadWebControl.RegisterCssReferences()
   at Telerik.Web.UI.RadWebControl.ControlPreRender()
   at Telerik.Web.UI.RadInputControl.ControlPreRender()
   at Telerik.Web.UI.RadWebControl.OnPreRender(EventArgs e)
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.WebControls.WebParts.WebPart.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
---------------------------------------------------------------------------------------------------------------------------------------------------------------------

Has aynone been succesfull in using Telerik components on AX2009 Enterprise Portal? If so, did you encounter this error and how did you solve it?

My sincere thanks in advance!

With regards,
Hendrik Pasmans
Evgeny Bestfator
Top achievements
Rank 1
 answered on 09 Nov 2011
1 answer
83 views
I have several pages with grids on them, with a RadWindow used to either edit grid items or add new ones. Everything worked great for a couple years, but I seem to be having an issue now that I'm using a newer version (2011.2.712.35) of the Telerik.Web.UI DLL.

After the first time you close the window, the grid refreshes properly. After that, opening the window and closing it a second time fails to refresh the grid.

I'm calling the refresh by setting OnClientClose on the window:

<telerik:RadWindow ID="EditAlias" runat="server" Title="Edit Client/Payer Alias" VisibleStatusbar="false" ReloadOnShow="true" Modal="true" Behaviors="Close" Animation="Slide" OnClientClose="OnClientClose"  />

Then the javascript:

function OnClientClose(sender, eventArgs)
{
   $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("Rebind");
}

And finally the code-behind:

protected void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e)
        {
            if (e.Argument == "Rebind")
            {
                radGrdPayerAlias.Rebind();
            }
        }
Jayesh Goyani
Top achievements
Rank 2
 answered on 09 Nov 2011
1 answer
199 views


Hi,

I ahve used below code for adding images.

<

 

 

telerik:radbutton id="RadButton1" runat="server" Text="Expand All"

 

 

 

onclick="RadButton1_Click" width ="30" height="20">

 

 

 

<Image IsBackgroundImage="true" ImageUrl ="expand-large-silver-Shapes4FREE1.png" />

 

</

 

 

telerik:radbutton>

 



when I run the application I got many expand button.I am not sure why it happened?

I need to add Rad ImagesButton  and click on this button exapnd all treeview and treelist node.

How to add Rad ImagesButton ?

Thanks,
Sindu
Shinu
Top achievements
Rank 2
 answered on 09 Nov 2011
1 answer
94 views
hi,
how can we make parent nodes checkable false?we are using ef query while binding..
Princy
Top achievements
Rank 2
 answered on 09 Nov 2011
1 answer
101 views
Hello,

When i use raddatepicker.selecteddate, this includes date as well as time.
I want only the date part from the datepicker.
How can i get it?


Thanks
Shinu
Top achievements
Rank 2
 answered on 09 Nov 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?