Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9256313
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T11:54:40+00:00 2026-06-18T11:54:40+00:00

I would like to create a custom input type similar to the way AngularJS

  • 0

I would like to create a custom input type similar to the way AngularJS implements “email”, for example.

<input type="email" ng-model="user.email" />

What I would like to create is an input type like this:

<input type="path" ng-model="page.path" />

Any ideas on how this can be accomplished? So far, I’ve only been able to figure out how to implement custom directives where ‘path’ is the name of the tag, attribute or class.

For example, I can get this to work but it is inconsistent with the other form fields and I’d really like them to look the same.

<input type="text" ng-model="page.path" path />
app.directive('path', function() {
  return {
    require: 'ngModel',
    link: function(scope, elm, attrs, ctrl) { ... }
  };
});
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T11:54:41+00:00Added an answer on June 18, 2026 at 11:54 am

    You can create your own input type=”path” by creating an input directive with custom logic if the type attribute is set to “path”.

    I’ve created a simple example that simply replaces \ with /. The directive looks like this:

    module.directive('input', function() {
        return {
            restrict: 'E',
            require: 'ngModel',
            link: function (scope, element, attr, ngModel) {
              if (attr.type !== 'path') return;
    
              // Override the input event and add custom 'path' logic
              element.unbind('input');
              element.bind('input', function () {
                var path = this.value.replace(/\\/g, '/');
    
                scope.$apply(function () {
                  ngModel.$setViewValue(path);
                });
              });
            }
        };
    });
    

    Example

    Update: Changed on, off to bind, unbind to remove jQuery dependency. Example updated.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to create a custom data type which basically behaves like an
I would like to create a custom control in order to display a pie
I would like to create a custom document library where I use the standard
I would like to create a custom control in my Android App. It will
I have authored some custom classes that I would like to create using XAML:
I would like to create this shape using just css. I am pretty sure
I would like to create a c++ type that mimic the build-in type exactly.
Using Drupal 7 I would like to create 2 custom content types and link
For a custom image selection tool I would like to create form validation based
Hi i would like to create a custom button. I have implement my custom_but.xml

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.