Click here to Skip to main content
15,881,882 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: trigger Pin
Richard MacCutchan2-Mar-15 1:27
mveRichard MacCutchan2-Mar-15 1:27 
QuestionRe Getting_Error Pin
Member 1116162527-Feb-15 17:20
Member 1116162527-Feb-15 17:20 
AnswerRe: Re Getting_Error Pin
Pete O'Hanlon27-Feb-15 21:51
mvePete O'Hanlon27-Feb-15 21:51 
QuestionGetting_Error Pin
Member 1116162526-Feb-15 19:26
Member 1116162526-Feb-15 19:26 
AnswerRe: Getting_Error Pin
Pete O'Hanlon26-Feb-15 20:18
mvePete O'Hanlon26-Feb-15 20:18 
QuestionError Pin
Member 1116162526-Feb-15 18:31
Member 1116162526-Feb-15 18:31 
SuggestionRe: Error Pin
Richard MacCutchan26-Feb-15 21:25
mveRichard MacCutchan26-Feb-15 21:25 
QuestionAccessing Telerik DropDownColumn from EditedTemplate Pin
byka25-Feb-15 7:21
byka25-Feb-15 7:21 
I have a RadGrid (Telerik) with 2 columns. In first column I have radionButtonList. In editMode based on selected values I need to enable/disable telerik:GridDropDownColumn.
Please help.

ASP.NET
<telerik:GridTemplateColumn DataField="IsHighLevel" HeaderText="High Level">
                                                <ItemTemplate>
                                                    <%# IIf(Convert.ToBoolean(Eval("IsHighLevel")) = True, "Yes", "No")%>
                                                </ItemTemplate>
                                                <EditItemTemplate>
                                                    <asp:RadioButtonList SelectedValue='<%# IIf((Eval("IsHighLevel")) = True, "Yes", "No")%>'
                                                        OnSelectedIndexChanged="chkIsHighLevelIndexChanged" ID="rblIsHighLevel" RepeatDirection="Horizontal"
                                                        runat="server" AutoPostBack="True">
                                                        <asp:ListItem Value="Yes" Text="Yes"></asp:ListItem>
                                                        <asp:ListItem Value="No" Text="No"></asp:ListItem>
                                                    </asp:RadioButtonList>
                                                    <asp:TextBox runat="server" ID="txtHighLevel" Visible="false"></asp:TextBox>
                                                    </ItemTemplate>
                                                </EditItemTemplate>
                                            </telerik:GridTemplateColumn>
<telerik:GridDropDownColumn UniqueName="AccessLevelID" ListDataMember="AccessLevel"
  SortExpression="AccessLevelID" ListTextField="Description" ListValueField="DDL_AccessLevelID"
  HeaderText="AccessLevelID" DataField="GRID_AccessLevelID


VB
Protected Sub chkIsHighLevelIndexChanged(ByVal sender As Object, ByVal e As EventArgs)
        Try

            Dim rblIsHighLevel As RadioButtonList = DirectCast(sender, RadioButtonList)
            If rblIsHighLevel.SelectedValue = "Yes" Then
                '
                ???? access dropdowncolumn to enable
                       End If

QuestionThe model item passed into the dictionary is of type 'WebTime_Sheet.Models.RegisterViewModel', but this dictionary requires a model item of type 'WebTime_Sheet.Models.Users'. Pin
Kriss Legrand23-Feb-15 16:23
Kriss Legrand23-Feb-15 16:23 
AnswerRe: The model item passed into the dictionary is of type 'WebTime_Sheet.Models.RegisterViewModel', but this dictionary requires a model item of type 'WebTime_Sheet.Models.Users'. Pin
Dave Kreskowiak23-Feb-15 17:30
mveDave Kreskowiak23-Feb-15 17:30 
GeneralRe: The model item passed into the dictionary is of type 'WebTime_Sheet.Models.RegisterViewModel', but this dictionary requires a model item of type 'WebTime_Sheet.Models.Users'. Pin
Kriss Legrand23-Feb-15 21:22
Kriss Legrand23-Feb-15 21:22 
GeneralRe: The model item passed into the dictionary is of type 'WebTime_Sheet.Models.RegisterViewModel', but this dictionary requires a model item of type 'WebTime_Sheet.Models.Users'. Pin
Dave Kreskowiak24-Feb-15 2:34
mveDave Kreskowiak24-Feb-15 2:34 
QuestionService Broker Pin
Member 1116162520-Feb-15 17:18
Member 1116162520-Feb-15 17:18 
AnswerRe: Service Broker Pin
Dave Kreskowiak20-Feb-15 17:58
mveDave Kreskowiak20-Feb-15 17:58 
Questionnested datalist not updating on databinding Pin
ankita prabha18-Feb-15 23:38
ankita prabha18-Feb-15 23:38 
QuestionExtract certain Text FROM PDF into my vb.NET TextBoxes Pin
VIERcntHOLZ11-Feb-15 5:21
VIERcntHOLZ11-Feb-15 5:21 
AnswerRe: Extract certain Text FROM PDF into my vb.NET TextBoxes Pin
Richard MacCutchan11-Feb-15 5:37
mveRichard MacCutchan11-Feb-15 5:37 
GeneralRe: Extract certain Text FROM PDF into my vb.NET TextBoxes Pin
VIERcntHOLZ11-Feb-15 5:46
VIERcntHOLZ11-Feb-15 5:46 
GeneralRe: Extract certain Text FROM PDF into my vb.NET TextBoxes Pin
Richard MacCutchan11-Feb-15 6:48
mveRichard MacCutchan11-Feb-15 6:48 
GeneralRe: Extract certain Text FROM PDF into my vb.NET TextBoxes Pin
VIERcntHOLZ12-Feb-15 5:45
VIERcntHOLZ12-Feb-15 5:45 
GeneralRe: Extract certain Text FROM PDF into my vb.NET TextBoxes Pin
manchanx12-Feb-15 13:32
professionalmanchanx12-Feb-15 13:32 
GeneralRe: Extract certain Text FROM PDF into my vb.NET TextBoxes Pin
Richard MacCutchan12-Feb-15 22:29
mveRichard MacCutchan12-Feb-15 22:29 
QuestionRANKING IN VB.NET MYSQL Pin
KipkoechE11-Feb-15 1:30
KipkoechE11-Feb-15 1:30 
AnswerRe: RANKING IN VB.NET MYSQL Pin
Richard MacCutchan11-Feb-15 1:39
mveRichard MacCutchan11-Feb-15 1:39 
QuestionDATAGRIDVIEW VB.NET Pin
KipkoechE8-Feb-15 17:21
KipkoechE8-Feb-15 17:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.