Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
275 views
I am try to show a grid that will allow the user to multiselect rows and only have the rows selected to be editable.  Then on a button click save it will save that changes.

I have the multiselection set up but when I select the row I want it to open the row for editing, how do I capture this event?


Tahnks,
Eric
Eric
Top achievements
Rank 1
 answered on 01 Apr 2009
7 answers
307 views

I have the following combo box in many places in my code:

<telerik:RadComboBox ID="cboSystem" runat="server" > 
  <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> 
</telerik:RadComboBox> 

When you tab into the box and want to type the first letter of item you want to select... it snaps to that item without issue if they start with an uppercase character.  If they start with a lower case character, then it does not snap to the item.

Example:
A RadCombobox contains 3 items:
  • dog
  • cat
  • Lizard

When you tab into this box and type 'l' (cap locks doesn't matter), it selects Lizard, as I would expect it to.  However, if you tab into the same box, and type 'd' or 'c', it does not snap to the items as you would expect and as it did with the 'l'.

I do not want to allow editable text in the combo box, but is there a property that will tell it to ignore case when snapping to an item in a combobox like that above?

Any input is appreciated. 

Thanks,
Marty

Marty
Top achievements
Rank 1
 answered on 01 Apr 2009
1 answer
123 views
Hi there,

I add nodes dynamically to a treeview inside radcomboBox.

if (CountryComboBox.Items.Count == 0)
            {
                CountryComboBox.Items.Add(new RadComboBoxItem());
            }

            RadTreeView CountryTree = (RadTreeView)CountryComboBox.Items[0].FindControl("CountrySelector");
            CountryTree.Nodes.Clear();

            // communicate the tree's clientside via the attributes collection
            CountryComboBox.Items[0].Attributes["TreeID"] = CountryTree.ClientID;

            CountryTree.DataTextField = "Title";
            CountryTree.DataFieldID = "ID";
            CountryTree.DataValueField = "ID";
            CountryTree.DataSource = Countries;
            CountryTree.DataBind();

When I run it, it doesn't display loading image.

I tried

<telerik:RadAjaxManager runat="server" ID="MyAjaxManager" EnableAJAX="true" DefaultLoadingPanelID="LoadingPanel1">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="CountryComboBox">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="CourseFinderSearchResults" />
                    <telerik:AjaxUpdatedControl ControlID="BrandSelector" />
                    <telerik:AjaxUpdatedControl ControlID="PriceSliderPanel" />
                </UpdatedControls>
            </telerik:AjaxSetting>

OR 

<telerik:RadAjaxManager runat="server" ID="MyAjaxManager" EnableAJAX="true" DefaultLoadingPanelID="LoadingPanel1">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="CountrySelector">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="CourseFinderSearchResults" />
                    <telerik:AjaxUpdatedControl ControlID="BrandSelector" />
                    <telerik:AjaxUpdatedControl ControlID="PriceSliderPanel" />
                </UpdatedControls>
            </telerik:AjaxSetting>

OR 

if (CountryComboBox.Items.Count == 0)
            {
                CountryComboBox.Items.Add(new RadComboBoxItem());
            }

            RadTreeView CountryTree = (RadTreeView)CountryComboBox.Items[0].FindControl("CountrySelector");
            CountryTree.Nodes.Clear();

            // communicate the tree's clientside via the attributes collection
            CountryComboBox.Items[0].Attributes["TreeID"] = CountryTree.ClientID;

            CountryTree.DataTextField = "Title";
            CountryTree.DataFieldID = "ID";
            CountryTree.DataValueField = "ID";
            CountryTree.DataSource = Countries;
            CountryTree.DataBind();

            MyAjaxManager.AjaxSettings.AddAjaxSetting(CountryTree, CourseFinderSearchResults);
            MyAjaxManager.AjaxSettings.AddAjaxSetting(CountryTree, BrandSelector);


None of them works.

My client side code is like that
<telerik:RadComboBox
                          Width="200"
                          DropDownWidth="200"
                          Height="100"
                          ID="CountryComboBox"
                          Skin="Telerik"
                          Runat="server"
                          EmptyMessage="All Countries"
                          OnClientDropDownOpened="OnCountryComboClientDropDownOpenedHandler"
                          AllowCustomText="true">
                                <ItemTemplate>
                                    <div id="div2">
                                        <telerik:RadTreeView ID="CountrySelector"
                                            runat="server"
                             Height="100"
                             Width="200"
                             OnNodeCheck="CountrySelected"
                             ShowLineImages="false"
                             OnClientNodeChecked="onCountryNodeChecked"
                                OnClientNodeClicking="CountryNodeClicking" CheckBoxes="true">
                                        </telerik:RadTreeView>
                                    </div>
                                </ItemTemplate>
                            </telerik:RadComboBox>

Appreciate your help,

Toby
Iana Tsolova
Telerik team
 answered on 01 Apr 2009
1 answer
127 views
I apologize if this question has already been asked.  I was not able to find an answer by searching.

As I understand it, when a subscription expires, you no longer receive new releases and service packs.  My question is, does this also apply to internal builds?  Will I continue to have access to new internal bugfix builds?

Thanks,
Eric
Paul
Telerik team
 answered on 01 Apr 2009
3 answers
198 views
Hi there

I was wondering if it was possible to use jQuery to enable the fade transition effect as used in the classic radrotator?

Thanks
Hugh
Fiko
Telerik team
 answered on 01 Apr 2009
1 answer
124 views
Hi,

I am running into a problem with the FileExplorer. Here is how I have my page setup:

The FileExplorer is in a placeholder which starts with visible=true.
When a button on the page is clicked, the placeholder containing the FileExplorer is set to visible=false.
When another button on the page is clicked, the placeholder containing the fileexplorer is set back to visible=true

After the second button is clicked and the fileexplorer becomes visible again, it no longer works. No items load in the right pane. I copied the following code for the initialization of the fileexplorer on page_load from the demo located at http://demos.telerik.com/aspnet-ajax/fileexplorer/examples/default/defaultcs.aspx

Protected Sub Page_Load(ByVal sender As ObjectByVal e As EventArgs) 
            FileExplorer1.EnableViewState = False 
            UpdateVisibleControls() 
            FileExplorer1.EnableOpenFile = enableOpenFile.Checked 
            FileExplorer1.DisplayUpFolderItem = displayUpFolder.Checked 
            If Not enableUpload.Checked Then 
                FileExplorer1.Configuration.UploadPaths = New String(0) {} 
            End If 
            FileExplorer1.InitialPath = Page.ResolveUrl("~/FileExplorer/Examples/Default/Images/Northwind/Flowers/"
        End Sub 
        Protected Sub UpdateVisibleControls() 
            Dim explorerControls As Telerik.Web.UI.FileExplorer.FileExplorerControls = 0 
            If visibleControls.Items(0).Selected Then 
                explorerControls = explorerControls Or Telerik.Web.UI.FileExplorer.FileExplorerControls.AddressBox 
            End If 
            If visibleControls.Items(1).Selected Then 
                explorerControls = explorerControls Or Telerik.Web.UI.FileExplorer.FileExplorerControls.Grid 
            End If 
            If visibleControls.Items(2).Selected Then 
                explorerControls = explorerControls Or Telerik.Web.UI.FileExplorer.FileExplorerControls.Toolbar 
            End If 
            If visibleControls.Items(3).Selected Then 
                explorerControls = explorerControls Or Telerik.Web.UI.FileExplorer.FileExplorerControls.TreeView 
            End If 
            FileExplorer1.VisibleControls = explorerControls 
        End Sub 



After running into the problem, I thought that the fileexplorer might need to be re-initialized after having its visibility toggled, so I tried running the above code again. It did not work, so I tried running just certain parts of it, and it still did not work.

Any ideas?

Thanks,
Jenna



Fiko
Telerik team
 answered on 01 Apr 2009
1 answer
97 views
we have a custom web control inheriting from InputFormTextBox. We will inheriting it from RadHtmlField instead.
I downloaded the trial version of RadControls for ASP.NET AJAX. There is no RadHtmlField class.
Am I on the right track and who can I get RadHtmlField?

thanks
Felix
Rumen
Telerik team
 answered on 01 Apr 2009
1 answer
118 views
I have a small issue with the slider and how it aligns the values to the ticks. We have a very simple slider, with values 1 to 5 representing years, my issue is that the number 1 under the first tick is offset to the right of the tick and the number 5 under the last tick is offset to the left so it looks a bad.

The slider is quite wide (500px) to match the one above it which has a much larger range and more values and the misalignment looks pretty terrible, I have tried shrinking it down the but the offset issue is still there although not as bad, but this makes my page look terrible.

I have tried using a variety of skins and they all behave in the same way.

Any ideas anyone?

Thanks in advance
Tsvetie
Telerik team
 answered on 01 Apr 2009
1 answer
61 views
Hi
   I am having a templet column in RadGrid.In my templet Column I am having two values..one is text..one is integer...Now i need sorting on this column.How can i do that and with which one i can sort...plz help me

Thanks
Srikanth Gunnala
Daniel
Telerik team
 answered on 01 Apr 2009
2 answers
176 views
Hi All

I have a rad grid with data.

I have a button (Export To PDF)

While clicking the button, a pdf file opens with the data.

The pdf is in portrait mode

Is there any option to change it to landscape mode.

-Anto
Anto (DLL Version : 2008.3.1314.35)
Top achievements
Rank 2
 answered on 01 Apr 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?