Skip to content

Commit 4620668

Browse files
authored
Merge pull request #1 from vairamuthuR/master
config(EJ2-10016): github update
2 parents 6b567df + 09e442f commit 4620668

File tree

2,256 files changed

+623427
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,256 files changed

+623427
-0
lines changed

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.npmrc
2+
.vs/
3+
**/.vs/
4+
src/bin
5+
src/obj
6+
node_modules/
7+
bin/
8+
obj/
9+
package-lock.json
10+
deploy/
11+
npm-debug.log
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNetCore.Mvc;
6+
7+
// For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
8+
9+
namespace EJ2CoreSampleBrowser.Controllers
10+
{
11+
public partial class AccordionController : Controller
12+
{
13+
public IActionResult Ajax()
14+
{
15+
return View();
16+
}
17+
}
18+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNetCore.Mvc;
6+
7+
// For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
8+
9+
namespace EJ2CoreSampleBrowser.Controllers
10+
{
11+
public partial class AccordionController : Controller
12+
{
13+
// GET: /<controller>/
14+
public IActionResult DefaultFunctionalities()
15+
{
16+
return View();
17+
}
18+
}
19+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNetCore.Mvc;
6+
7+
// For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
8+
9+
namespace EJ2CoreSampleBrowser.Controllers
10+
{
11+
public partial class AccordionController : Controller
12+
{
13+
public IActionResult Icons()
14+
{
15+
return View();
16+
}
17+
}
18+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNetCore.Mvc;
6+
7+
// For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
8+
9+
namespace EJ2CoreSampleBrowser.Controllers
10+
{
11+
public partial class AccordionController : Controller
12+
{
13+
public IActionResult Rtl()
14+
{
15+
return View();
16+
}
17+
}
18+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNetCore.Mvc;
6+
using EJ2CoreSampleBrowser.Models;
7+
8+
namespace EJ2CoreSampleBrowser.Controllers
9+
{
10+
public partial class AutoCompleteController : Controller
11+
{
12+
public IActionResult CustomFiltering()
13+
{
14+
ViewBag.data = new BooksData().GetBooksData();
15+
return View();
16+
}
17+
}
18+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNetCore.Mvc;
6+
using EJ2CoreSampleBrowser.Models;
7+
8+
namespace EJ2CoreSampleBrowser.Controllers
9+
{
10+
public partial class AutoCompleteController : Controller
11+
{
12+
public IActionResult DataBinding()
13+
{
14+
ViewBag.localdata = new Countries().CountriesList();
15+
ViewBag.sort = "Ascending";
16+
return View();
17+
}
18+
}
19+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNetCore.Mvc;
6+
7+
namespace EJ2CoreSampleBrowser.Controllers
8+
{
9+
public partial class AutoCompleteController : Controller
10+
{
11+
public IActionResult DefaultFunctionalities()
12+
{
13+
ViewBag.data = new string[] { "American Football", "Badminton", "Basketball", "Cricket", "Football", "Golf", "Hockey", "Rugby", "Snooker", "Tennis" };
14+
return View();
15+
}
16+
}
17+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNetCore.Mvc;
6+
using EJ2CoreSampleBrowser.Models;
7+
8+
namespace EJ2CoreSampleBrowser.Controllers
9+
{
10+
public partial class AutoCompleteController : Controller
11+
{
12+
public IActionResult DiacriticsFiltering()
13+
{
14+
ViewBag.data = new Diacritics().data;
15+
return View();
16+
}
17+
}
18+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNetCore.Mvc;
6+
using EJ2CoreSampleBrowser.Models;
7+
8+
namespace EJ2CoreSampleBrowser.Controllers
9+
{
10+
public partial class AutoCompleteController : Controller
11+
{
12+
public IActionResult GroupingAndIcon()
13+
{
14+
ViewBag.groupdata = new Vegetables().VegetablesList();
15+
ViewBag.icondata = new SocialMedia().SocialMediaList();
16+
return View();
17+
}
18+
}
19+
}

0 commit comments

Comments
 (0)