binding datasource using javascript in devexpress












0















I have two dropdown list named companyID and deparmentID, and both are bind using sqldatasource. departmentID dropwdown is bind with SQLdatasource that would generate list whenever companyId is selected. I can do this when using selectedindexchanged method of companyId and setting its autopostback to true. But I don't want to use that method. Is there a way that I can rebind the datasource of departmendID using javascript or jquery of DEVEXPRESS? Hope someone can help me with this.



     protected void cmbCompany_SelectedIndexChanged(object sender, EventArgs e)
{
DeptSQL.DataBind();
}

This is my mark up code for my combo box:

<dx:LayoutItem Caption="Company" ColSpan="2" Width="100%">
<LayoutItemNestedControlCollection>
<dx:LayoutItemNestedControlContainer runat="server">
<dx:ASPxComboBox ID="cmbCompany" runat="server" Width="100%" AutoPostBack="True" DataSourceID="CompSQL" OnSelectedIndexChanged="cmbCompany_SelectedIndexChanged" TextField="MDRF_CompDesc" ValueField="MDRF_CompId">
</dx:ASPxComboBox>
<asp:SqlDataSource ID="CompSQL" runat="server" ConnectionString="<%$ ConnectionStrings:MDRFConnectionString %>" SelectCommand="SELECT [MDRF_CompId], [MDRF_CompShort], [MDRF_CompDesc] FROM [MDRF_Company] ORDER BY [MDRF_CompDesc]"></asp:SqlDataSource>
</dx:LayoutItemNestedControlContainer>
</LayoutItemNestedControlCollection>
<CaptionSettings HorizontalAlign="Left" Location="Top" VerticalAlign="Middle" />
</dx:LayoutItem>
<dx:LayoutItem Caption="Department" Width="100%">
<LayoutItemNestedControlCollection>
<dx:LayoutItemNestedControlContainer runat="server">
<dx:ASPxComboBox ID="cmbDepartment" runat="server" DataSourceID="DeptSQL" TextField="MDRF_DepDesc" ValueField="MDRF_DepId" AutoPostBack="True" OnSelectedIndexChanged="cmbDepartment_SelectedIndexChanged">
</dx:ASPxComboBox>
<asp:SqlDataSource ID="DeptSQL" runat="server" ConnectionString="<%$ ConnectionStrings:MDRFConnectionString %>" SelectCommand="SELECT [MDRF_DepDesc], [MDRF_DepId], [MDRF_Comp] FROM [MDRF_Department] WHERE ([MDRF_Comp] = @MDRF_Comp)">
<SelectParameters>
<asp:ControlParameter ControlID="cmbCompany" Name="MDRF_Comp" PropertyName="Value" Type="Int32" />
</SelectParameters>
</asp:SqlDataSource>
</dx:LayoutItemNestedControlContainer>
</LayoutItemNestedControlCollection>
<CaptionSettings HorizontalAlign="Left" Location="Top" VerticalAlign="Middle" />
</dx:LayoutItem>


Is there a way to call that in javascript?



Thanks










share|improve this question

























  • Are you want to implement "cascading combobox" like this example? Please include the markup to show your ComboBox and SqlDataSource control settings.

    – Tetsuya Yamamoto
    Nov 21 '18 at 8:13











  • yes that is what i needed.. This is my mark up. I'll edit my question.

    – user3312649
    Nov 22 '18 at 1:53













  • I concerned about "rebind the datasource using JS/jQuery" for second dropdown - rebinding requires postback to server and AutoPostBack="True" serves that purpose. Are you want to perform AJAX postback and return option lists into second ASPxComboBox instead of standard postback?

    – Tetsuya Yamamoto
    Nov 22 '18 at 3:31











  • yes. but I don't want that approach as it will blink the page which is so irritating in the eyes. Yes I want to perform ajax postback, that is exactly what i need.

    – user3312649
    Nov 22 '18 at 3:44
















0















I have two dropdown list named companyID and deparmentID, and both are bind using sqldatasource. departmentID dropwdown is bind with SQLdatasource that would generate list whenever companyId is selected. I can do this when using selectedindexchanged method of companyId and setting its autopostback to true. But I don't want to use that method. Is there a way that I can rebind the datasource of departmendID using javascript or jquery of DEVEXPRESS? Hope someone can help me with this.



     protected void cmbCompany_SelectedIndexChanged(object sender, EventArgs e)
{
DeptSQL.DataBind();
}

This is my mark up code for my combo box:

<dx:LayoutItem Caption="Company" ColSpan="2" Width="100%">
<LayoutItemNestedControlCollection>
<dx:LayoutItemNestedControlContainer runat="server">
<dx:ASPxComboBox ID="cmbCompany" runat="server" Width="100%" AutoPostBack="True" DataSourceID="CompSQL" OnSelectedIndexChanged="cmbCompany_SelectedIndexChanged" TextField="MDRF_CompDesc" ValueField="MDRF_CompId">
</dx:ASPxComboBox>
<asp:SqlDataSource ID="CompSQL" runat="server" ConnectionString="<%$ ConnectionStrings:MDRFConnectionString %>" SelectCommand="SELECT [MDRF_CompId], [MDRF_CompShort], [MDRF_CompDesc] FROM [MDRF_Company] ORDER BY [MDRF_CompDesc]"></asp:SqlDataSource>
</dx:LayoutItemNestedControlContainer>
</LayoutItemNestedControlCollection>
<CaptionSettings HorizontalAlign="Left" Location="Top" VerticalAlign="Middle" />
</dx:LayoutItem>
<dx:LayoutItem Caption="Department" Width="100%">
<LayoutItemNestedControlCollection>
<dx:LayoutItemNestedControlContainer runat="server">
<dx:ASPxComboBox ID="cmbDepartment" runat="server" DataSourceID="DeptSQL" TextField="MDRF_DepDesc" ValueField="MDRF_DepId" AutoPostBack="True" OnSelectedIndexChanged="cmbDepartment_SelectedIndexChanged">
</dx:ASPxComboBox>
<asp:SqlDataSource ID="DeptSQL" runat="server" ConnectionString="<%$ ConnectionStrings:MDRFConnectionString %>" SelectCommand="SELECT [MDRF_DepDesc], [MDRF_DepId], [MDRF_Comp] FROM [MDRF_Department] WHERE ([MDRF_Comp] = @MDRF_Comp)">
<SelectParameters>
<asp:ControlParameter ControlID="cmbCompany" Name="MDRF_Comp" PropertyName="Value" Type="Int32" />
</SelectParameters>
</asp:SqlDataSource>
</dx:LayoutItemNestedControlContainer>
</LayoutItemNestedControlCollection>
<CaptionSettings HorizontalAlign="Left" Location="Top" VerticalAlign="Middle" />
</dx:LayoutItem>


Is there a way to call that in javascript?



Thanks










share|improve this question

























  • Are you want to implement "cascading combobox" like this example? Please include the markup to show your ComboBox and SqlDataSource control settings.

    – Tetsuya Yamamoto
    Nov 21 '18 at 8:13











  • yes that is what i needed.. This is my mark up. I'll edit my question.

    – user3312649
    Nov 22 '18 at 1:53













  • I concerned about "rebind the datasource using JS/jQuery" for second dropdown - rebinding requires postback to server and AutoPostBack="True" serves that purpose. Are you want to perform AJAX postback and return option lists into second ASPxComboBox instead of standard postback?

    – Tetsuya Yamamoto
    Nov 22 '18 at 3:31











  • yes. but I don't want that approach as it will blink the page which is so irritating in the eyes. Yes I want to perform ajax postback, that is exactly what i need.

    – user3312649
    Nov 22 '18 at 3:44














0












0








0








I have two dropdown list named companyID and deparmentID, and both are bind using sqldatasource. departmentID dropwdown is bind with SQLdatasource that would generate list whenever companyId is selected. I can do this when using selectedindexchanged method of companyId and setting its autopostback to true. But I don't want to use that method. Is there a way that I can rebind the datasource of departmendID using javascript or jquery of DEVEXPRESS? Hope someone can help me with this.



     protected void cmbCompany_SelectedIndexChanged(object sender, EventArgs e)
{
DeptSQL.DataBind();
}

This is my mark up code for my combo box:

<dx:LayoutItem Caption="Company" ColSpan="2" Width="100%">
<LayoutItemNestedControlCollection>
<dx:LayoutItemNestedControlContainer runat="server">
<dx:ASPxComboBox ID="cmbCompany" runat="server" Width="100%" AutoPostBack="True" DataSourceID="CompSQL" OnSelectedIndexChanged="cmbCompany_SelectedIndexChanged" TextField="MDRF_CompDesc" ValueField="MDRF_CompId">
</dx:ASPxComboBox>
<asp:SqlDataSource ID="CompSQL" runat="server" ConnectionString="<%$ ConnectionStrings:MDRFConnectionString %>" SelectCommand="SELECT [MDRF_CompId], [MDRF_CompShort], [MDRF_CompDesc] FROM [MDRF_Company] ORDER BY [MDRF_CompDesc]"></asp:SqlDataSource>
</dx:LayoutItemNestedControlContainer>
</LayoutItemNestedControlCollection>
<CaptionSettings HorizontalAlign="Left" Location="Top" VerticalAlign="Middle" />
</dx:LayoutItem>
<dx:LayoutItem Caption="Department" Width="100%">
<LayoutItemNestedControlCollection>
<dx:LayoutItemNestedControlContainer runat="server">
<dx:ASPxComboBox ID="cmbDepartment" runat="server" DataSourceID="DeptSQL" TextField="MDRF_DepDesc" ValueField="MDRF_DepId" AutoPostBack="True" OnSelectedIndexChanged="cmbDepartment_SelectedIndexChanged">
</dx:ASPxComboBox>
<asp:SqlDataSource ID="DeptSQL" runat="server" ConnectionString="<%$ ConnectionStrings:MDRFConnectionString %>" SelectCommand="SELECT [MDRF_DepDesc], [MDRF_DepId], [MDRF_Comp] FROM [MDRF_Department] WHERE ([MDRF_Comp] = @MDRF_Comp)">
<SelectParameters>
<asp:ControlParameter ControlID="cmbCompany" Name="MDRF_Comp" PropertyName="Value" Type="Int32" />
</SelectParameters>
</asp:SqlDataSource>
</dx:LayoutItemNestedControlContainer>
</LayoutItemNestedControlCollection>
<CaptionSettings HorizontalAlign="Left" Location="Top" VerticalAlign="Middle" />
</dx:LayoutItem>


Is there a way to call that in javascript?



Thanks










share|improve this question
















I have two dropdown list named companyID and deparmentID, and both are bind using sqldatasource. departmentID dropwdown is bind with SQLdatasource that would generate list whenever companyId is selected. I can do this when using selectedindexchanged method of companyId and setting its autopostback to true. But I don't want to use that method. Is there a way that I can rebind the datasource of departmendID using javascript or jquery of DEVEXPRESS? Hope someone can help me with this.



     protected void cmbCompany_SelectedIndexChanged(object sender, EventArgs e)
{
DeptSQL.DataBind();
}

This is my mark up code for my combo box:

<dx:LayoutItem Caption="Company" ColSpan="2" Width="100%">
<LayoutItemNestedControlCollection>
<dx:LayoutItemNestedControlContainer runat="server">
<dx:ASPxComboBox ID="cmbCompany" runat="server" Width="100%" AutoPostBack="True" DataSourceID="CompSQL" OnSelectedIndexChanged="cmbCompany_SelectedIndexChanged" TextField="MDRF_CompDesc" ValueField="MDRF_CompId">
</dx:ASPxComboBox>
<asp:SqlDataSource ID="CompSQL" runat="server" ConnectionString="<%$ ConnectionStrings:MDRFConnectionString %>" SelectCommand="SELECT [MDRF_CompId], [MDRF_CompShort], [MDRF_CompDesc] FROM [MDRF_Company] ORDER BY [MDRF_CompDesc]"></asp:SqlDataSource>
</dx:LayoutItemNestedControlContainer>
</LayoutItemNestedControlCollection>
<CaptionSettings HorizontalAlign="Left" Location="Top" VerticalAlign="Middle" />
</dx:LayoutItem>
<dx:LayoutItem Caption="Department" Width="100%">
<LayoutItemNestedControlCollection>
<dx:LayoutItemNestedControlContainer runat="server">
<dx:ASPxComboBox ID="cmbDepartment" runat="server" DataSourceID="DeptSQL" TextField="MDRF_DepDesc" ValueField="MDRF_DepId" AutoPostBack="True" OnSelectedIndexChanged="cmbDepartment_SelectedIndexChanged">
</dx:ASPxComboBox>
<asp:SqlDataSource ID="DeptSQL" runat="server" ConnectionString="<%$ ConnectionStrings:MDRFConnectionString %>" SelectCommand="SELECT [MDRF_DepDesc], [MDRF_DepId], [MDRF_Comp] FROM [MDRF_Department] WHERE ([MDRF_Comp] = @MDRF_Comp)">
<SelectParameters>
<asp:ControlParameter ControlID="cmbCompany" Name="MDRF_Comp" PropertyName="Value" Type="Int32" />
</SelectParameters>
</asp:SqlDataSource>
</dx:LayoutItemNestedControlContainer>
</LayoutItemNestedControlCollection>
<CaptionSettings HorizontalAlign="Left" Location="Top" VerticalAlign="Middle" />
</dx:LayoutItem>


Is there a way to call that in javascript?



Thanks







devexpress






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 22 '18 at 1:55







user3312649

















asked Nov 19 '18 at 12:58









user3312649user3312649

921113




921113













  • Are you want to implement "cascading combobox" like this example? Please include the markup to show your ComboBox and SqlDataSource control settings.

    – Tetsuya Yamamoto
    Nov 21 '18 at 8:13











  • yes that is what i needed.. This is my mark up. I'll edit my question.

    – user3312649
    Nov 22 '18 at 1:53













  • I concerned about "rebind the datasource using JS/jQuery" for second dropdown - rebinding requires postback to server and AutoPostBack="True" serves that purpose. Are you want to perform AJAX postback and return option lists into second ASPxComboBox instead of standard postback?

    – Tetsuya Yamamoto
    Nov 22 '18 at 3:31











  • yes. but I don't want that approach as it will blink the page which is so irritating in the eyes. Yes I want to perform ajax postback, that is exactly what i need.

    – user3312649
    Nov 22 '18 at 3:44



















  • Are you want to implement "cascading combobox" like this example? Please include the markup to show your ComboBox and SqlDataSource control settings.

    – Tetsuya Yamamoto
    Nov 21 '18 at 8:13











  • yes that is what i needed.. This is my mark up. I'll edit my question.

    – user3312649
    Nov 22 '18 at 1:53













  • I concerned about "rebind the datasource using JS/jQuery" for second dropdown - rebinding requires postback to server and AutoPostBack="True" serves that purpose. Are you want to perform AJAX postback and return option lists into second ASPxComboBox instead of standard postback?

    – Tetsuya Yamamoto
    Nov 22 '18 at 3:31











  • yes. but I don't want that approach as it will blink the page which is so irritating in the eyes. Yes I want to perform ajax postback, that is exactly what i need.

    – user3312649
    Nov 22 '18 at 3:44

















Are you want to implement "cascading combobox" like this example? Please include the markup to show your ComboBox and SqlDataSource control settings.

– Tetsuya Yamamoto
Nov 21 '18 at 8:13





Are you want to implement "cascading combobox" like this example? Please include the markup to show your ComboBox and SqlDataSource control settings.

– Tetsuya Yamamoto
Nov 21 '18 at 8:13













yes that is what i needed.. This is my mark up. I'll edit my question.

– user3312649
Nov 22 '18 at 1:53







yes that is what i needed.. This is my mark up. I'll edit my question.

– user3312649
Nov 22 '18 at 1:53















I concerned about "rebind the datasource using JS/jQuery" for second dropdown - rebinding requires postback to server and AutoPostBack="True" serves that purpose. Are you want to perform AJAX postback and return option lists into second ASPxComboBox instead of standard postback?

– Tetsuya Yamamoto
Nov 22 '18 at 3:31





I concerned about "rebind the datasource using JS/jQuery" for second dropdown - rebinding requires postback to server and AutoPostBack="True" serves that purpose. Are you want to perform AJAX postback and return option lists into second ASPxComboBox instead of standard postback?

– Tetsuya Yamamoto
Nov 22 '18 at 3:31













yes. but I don't want that approach as it will blink the page which is so irritating in the eyes. Yes I want to perform ajax postback, that is exactly what i need.

– user3312649
Nov 22 '18 at 3:44





yes. but I don't want that approach as it will blink the page which is so irritating in the eyes. Yes I want to perform ajax postback, that is exactly what i need.

– user3312649
Nov 22 '18 at 3:44












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53375176%2fbinding-datasource-using-javascript-in-devexpress%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53375176%2fbinding-datasource-using-javascript-in-devexpress%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini