Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesGrimont committed Dec 20, 2024
1 parent 46c0454 commit d2e9a4a
Show file tree
Hide file tree
Showing 10 changed files with 1,739 additions and 502 deletions.
6 changes: 5 additions & 1 deletion _c8oProject/mobilePages/BrowseTables.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3817,7 +3817,11 @@ title: First page
window["t"] = page;
page.local.type = "table";
page.local.target = "table";
if(page.navParams.data.type == "select" || page.navParams.data.type == "checkbox" || page.navParams.data.type == "radio"){
if(page.navParams.data.target == "table"){
page.local.type = "table";
page.local.target = "table";
}
else if(page.navParams.data.type == "select" || page.navParams.data.type == "checkbox" || page.navParams.data.type == "radio"){
page.local.type = "select";
page.local.target = "select";
}
Expand Down
Loading

0 comments on commit d2e9a4a

Please sign in to comment.