Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
181 views
I have a radgrid using a ItemTemplateColumn.  I have GridLines="None" and BorderStyle="None".  My display looks wonderfull until I click on one of the links in the masterview.  I see a yellow 'focus' box around my display.  Is there a way to turn this off?
Vasil
Telerik team
 answered on 21 Jan 2013
2 answers
82 views
Hello !

I am using Page Properties dialog in order to set background color or background image of RadEditor window. What I have noticed is there is not any control for uploading background image from local computer. We can just specify path of directory where images are exists on server using ImageManager's ViewPaths property. Is there any solution if I want to upload the image from local computer and set it as background image?

Awaiting for your valuable response.

Thanks
Dev
Dev
Top achievements
Rank 1
 answered on 21 Jan 2013
1 answer
232 views
Hi
I have a grid with follwing columns.. the Calumn TRANSACTION_CURRENCY_CD should be a DropDown list

.....
      <Columns>   
      <telerik:GridBoundColumn ReadOnly="true" DataField="ACCOUNT_ID" UniqueName="ACCOUNT_ID"
        HeaderText="Account ID">
        </telerik:GridBoundColumn>
     <telerik:GridDropDownColumn UniqueName="TRANSACTION_CURRENCY_CD" ListTextField="TRANSACTION_CURRENCY_CD"
  ListValueField="TRANSACTION_CURRENCY_CD" HeaderText="DropDown Column"
  DataField="TRANSACTION_CURRENCY_CD" DropDownControlType="RadComboBox" AllowSorting="true">
</telerik:GridDropDownColumn>
       <telerik:GridBoundColumn DataField="TRANSACTION_AMT" UniqueName="TRANSACTION_AMT" HeaderText="TRANSACTION_AMT">
      </telerik:GridBoundColumn>
             <telerik:GridBoundColumn DataField="LOCAL_CURRENCY_CD" UniqueName="LOCAL_CURRENCY_CD" HeaderText="LOCAL_CURRENCY_CD">
      </telerik:GridBoundColumn>
             <telerik:GridBoundColumn DataField="LOCAL_AMT" UniqueName="LOCAL_AMT" HeaderText="LOCAL_AMT">
      </telerik:GridBoundColumn>
             <telerik:GridBoundColumn DataField="SUB1" UniqueName="SUB1" HeaderText="SUB1">
      </telerik:GridBoundColumn>
                   <telerik:GridBoundColumn DataField="SUB2" UniqueName="SUB2" HeaderText="SUB2">
      </telerik:GridBoundColumn>
    </Columns>
 
.....

public DataTable  CustomersTable
{
 
    get
    {
        DataTable  res = (DataTable)this.Session["CustomersTable"];
        if (res == null)
        {
            res = (DataTable)Table0021.Lade("1").Tables[0];
            this.Session["CustomersTable"] = res;
        }
 
        return res;
    }
}

    protected void RadGrid1_NeedDataSource(object sender, Telerik.Web.UI.GridNeedDataSourceEventArgs e)
    {
        RadGrid1.DataSource = this.CustomersTable;
    }

TRANSACTION_CURRENCY_CD is the column name in the Datatable

2 questions /problems:

- the CalumnTRANSACTION_CURRENCY_CD is always Empty (in the edit mode, too)
- I get a List<String> with the Elemts for the DropDownList. How can I bind this to the dropdownlist


Thank you very much!
Shinu
Top achievements
Rank 2
 answered on 21 Jan 2013
4 answers
191 views
I have a RadAsyncUpload control in one usercontrol, loaded dynamically (wizard-style using RadTabStrip and RadMultiPage). I don't want to trigger the FileUploaded event until the Save button is clicked in the last panel of the wizard. Is this scenario supported? There will be a button in each PageView that will share the same ID--not a problem given that they are in different naming containers, of course, but perhaps a problem for RadAsyncUpload? How does it resolve the Control IDs contained in the PostbackTriggers property?

Thanks in advance for your help,

Larkin
Plamen
Telerik team
 answered on 21 Jan 2013
2 answers
240 views
Is there a property to force a 12 hour clock for the RadScheduler... when I select the times for the event from the Start Time and End Time dropdowns it displays 24 hour clock times.  I'd like this to be 12 hour clock only.
Alec
Top achievements
Rank 1
 answered on 21 Jan 2013
6 answers
89 views
Hi,

I'm using the RadSplitter together with RadSlidingPanes in a rather big project.
Everything worked fine (with version 2012.1.215.35) until recently in IE 10. In IE10/Win 8 the panes would not move.

I've upgraded to version 2012.3.1205.35 and the panes are working again, but there's a rendering error (also in IE9). When I open and close a pane, the pane displays on the bottom of the screen.

I've tested this with the demo found here: http://demos.telerik.com/aspnet-ajax/splitter/examples/sp_firstlook/defaultcs.aspx

The problem is our DocType. In our project we must use <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

I know everything works fine with Doctype 4.01, but I can't use this for now in this project.

Is there any workaround or a fix?

Thanks in advance!
vandenbroele
Top achievements
Rank 1
 answered on 21 Jan 2013
2 answers
62 views
Hi All,

I have a page in which i have an html table in this table's tr i have two td .. one td has radtabstrip and in one i have radgrid . initialy when grid is in read mode both controls heights are equal but when my grid is in edit mode (it has multiple edit simlutaneously) grids height increase but my tab remains same heighted . i have vertical tabstrip ....
i tried all the html changes like seeting td's height 100% and all but dosen't make any difference ...
thanks in advance ...
mahima jain
Top achievements
Rank 1
 answered on 21 Jan 2013
3 answers
321 views

I am using pre_render to set select items in a rad grid in a user control.  The method below is based on some Telerik posts.  The checkboxes are populated when the user control opens for me locally and on the production server using IE8.   But for other users (also using IE8), the check boxes only populate on postback.  I have tested using compatibility mode on and off and do not see a change in behavior. 

Any ideas or suggestions?  It is challenging that the code is the same but the behavior is varying for some users.

Protected 

Sub RadGrd_PreRender(sender As Object, e As System.EventArgs) Handles RadGrd.PreRender

     If Not (Session("SelectedItems_" + ClientID) Is Nothing) Then

        strSelectedItems = Session("SelectedItems_" + ClientID)

        For Each item As GridItem In RadGrd.MasterTableView.Items

            If TypeOf item Is GridDataItem Then

                Dim dataItem As GridDataItem = CType(item, GridDataItem)

                Dim chkBox As CheckBox = CType(dataItem("CheckBoxTemplateColumn").FindControl("CheckBox1"), CheckBox)

                If strSelectedItems.Contains("," + dataItem.OwnerTableView.DataKeyValues(dataItem.ItemIndex)("ID").ToString() + ",") Then

                    chkBox.Checked =

True
                               Else

                    chkBox.Checked = False

                End If

            End If

               Next

   End If

End Sub

 

Shinu
Top achievements
Rank 2
 answered on 21 Jan 2013
3 answers
77 views
Hello,

I have a ribbon bar control with application menu. I am not able to make an application menu item not visible or disabled:
        ribbonBar.ApplicationMenu.Items[1].Enabled = false;
or
        ribbonBar.ApplicationMenu.Items[1].Visible = false;
has no effect.
I have Telerik.Web.UI_2011_2_1101_Dev_hotfix build.
Any ideas?

Thanks!
Helen
Telerik team
 answered on 21 Jan 2013
2 answers
88 views
See the attached pic to have a visual view of the issue: radfileexplorerexample.png

Coding Front is simply:
<telerik:RadFileExplorer runat="server" ID="RadFileExplorer2" Width="500px" Height="300px"
                EnableOpenFile="true"  EnableCreateNewFolder="true">
</telerik:RadFileExplorer>


Code behind is:

RadFileExplorer2.Configuration.ViewPaths = new string[] { "~/Files", "~/Files" };
RadFileExplorer2.Configuration.UploadPaths = new string[] { "~/Files", "~/Files" };
RadFileExplorer2.Configuration.DeletePaths = new string[] { "~/Files", "~/Files" };


This is just an isolation of code to see if that issue was there. I tested it by plugin with a data model, that was where we noticed that issue.

Can anyone help please? Thanks!
Khayrattee
Top achievements
Rank 1
 answered on 21 Jan 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?